1. 使用zip(推荐)
- 压缩
zip -r archive-name.zip /path/to/directory
- 解压
unzip archive-name.zip -d /target/directory
2. 使用tar
- 压缩
tar czvf archive-name.tar.gz /path/to/directory
- 解压
tar xzvf archive-name.tar.gz -C /target/directory
0